home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000250_news@columbia.edu_Thu Apr 27 13:00:32 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02062
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Apr 1995 09:00:39 -0400
  3. Received: by apakabar.cc.columbia.edu id AA20846
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Apr 1995 09:00:35 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Setting modem speed
  9. Date: 27 Apr 1995 13:00:32 GMT
  10. Organization: Columbia University
  11. Lines: 57
  12. Message-Id: <3no4hg$kbb@apakabar.cc.columbia.edu>
  13. References: <3nmpig$e52@clark.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3nmpig$e52@clark.net>, Alan McConnell <alan@clark.net> wrote:
  18. >Hi, everybody!  I have a fine US-Robotics modem whose maximum speed
  19. >is 14400 -- which it is capable of when I run minicom under Linux.
  20. >But when I run C-Kermit, I get a message just after the two modems
  21. >have negotiated: "Can't change speed to 14400", and it turns out
  22. >they've negotiated to 9600.  What I want to know is: what do I have
  23. >to change in the C-Kermit source(I have just grabbed C-Kermit190)
  24. >so that I can run C-Kermit at 14400?  This must surely be a FAQ, 
  25. >but I can't find the answer in the only Kermit FAQ available to me.
  26. >
  27. It is indeed an FAQ, and the answer is indeed in the Kermit FAQ,
  28. which you can find at:
  29.  
  30.   ftp://kermit.columbia.edu/kermit/faq.txt
  31.   http://www.columbia.edu/kermit/moreinfo.html
  32.  
  33. And of course, the answer is also in the manual.   Quoting from the FAQ:
  34.  
  35.   15. Q: WHEN C-KERMIT DIALS MY V.32bis (OR V.34) MODEM, I GET THE ERROR
  36.          "CAN'T CHANGE SPEED TO 14400 (OR 28800)"
  37.          A: Tell C-Kermit to SET DIAL SPEED-MATCHING OFF; explained below.
  38.  
  39. Dialing is covered in Chapter 3 and Appendix II of "Using C-Kermit".  To
  40. recapitulate very briefly: older modems, like the Hayes 1200 and 2400,
  41. that did not do error correction or compression, but that could negotiate
  42. their modulation speed, would report the modulation speed upon successful
  43. connection, and change their interface speed to match.  Thus, the
  44. communication software would also have to change its own interface speed,
  45. or else the user would see only garbage.
  46.  
  47. Modern modems have two different speeds: the interface speed and the
  48. modulation speed.  The interface speed can be kept constant even though
  49. the modulation speed changes.  Or not, depending on how the modem is
  50. configured.
  51.  
  52. Kermit has no way of knowing whether your modem is set up to lock its
  53. interface speed, or to change it to match the modulation speed, and
  54. therefore it has no way of knowing whether to believe the "CONNECT 28800"
  55. (or whatever) message.  By default, for compatibility with the huge
  56. installed base of older modems, it does believe, and therefore changes 
  57. its interface speed according to the CONNECT message.
  58.  
  59. So if your modem's interface speed is locked (which it SHOULD be if it is
  60. an error-correcting, data-compressing modem), you must tell Kermit NOT to
  61. change its interface speed by giving it the command:
  62.  
  63.   SET DIAL SPEED-MATCHING OFF
  64.  
  65. Now to complicate matters, some of the newer modulations report speeds
  66. that are not commonly supported by the host operating system, such as
  67. 14400 and 28800.  Hence the message "Can't change speed to 14400" (or
  68. 28800).  But even if these speeds were supported, you would not want
  69. Kermit changing to them if the modem's interface speed was locked.  You
  70. would still see only garbage, but you would not get the "Can't change
  71. speed" message.
  72.  
  73. See pages 60-61 of "Using C-Kermit" for additional detail.